std::_Exit

From Cppreference

Jump to: navigation, search
Defined in header <cstdlib>

void _Exit( int exit_code );
(C++0x feature)

Causes normal program termination to occur without completely cleaning the resources.

Destructors of variables with automatic, thread local and static storage durations are not called. Functions passed to at_quick_exit() or atexit() are not called. Whether open resources such as files are closed is implementation defined. If exit_code is EXIT_FAILURE, an implementation-defined status, indicating unsuccessful termination, is returned. In other cases implementation-defined status value is returned.

Contents

Parameters

exit_code - exit status of the program

Return value

(none)

Example

See also

abort
causes abnormal program termination (without cleaning up)
(function)
exit
causes normal program termination with cleaning up
(function)
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox
In other languages